chore: 스킬 다음 단계 안내 체인 정비(#112) - #113
Merged
Merged
Conversation
Test Results290 tests 290 ✅ 3s ⏱️ Results for commit d56aae6. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR Summary
스킬 보고 템플릿의 다음 단계 안내를 실제 작업 흐름(open-issue → 작업 스킬 → write-test → commit-push → open-pr)과 일치하게 정비했습니다. 안내가 아예 없던 write-test에는 보고 템플릿과 결과 보고 Phase를 신설했습니다.
Problem
문제 1 - 다음 단계 안내의 중간 단계 누락
각 스킬은 종료 시 보고 템플릿의 다음 항목으로 후속 스킬을 안내하는데, implement는
write-test→open-pr로 커밋 단계를, fix-concurrency와 optimize-performance는commit-push→open-pr로 테스트 단계를 건너뛰고 있었습니다. 안내만 따라가면 테스트 없이 커밋하거나, 커밋 없이 PR 생성으로 넘어가는 흐름이 됩니다.문제 2 - write-test의 안내 부재로 체인 단절
write-test는 다른 스킬과 달리 보고 템플릿이 없고, 보고 지시가 마지막 Phase의 항목들에 흩어져 있어 다음 단계 안내가 없었습니다. 테스트가 끝나면 commit-push로 이어지는 고리가 끊겨, 흐름이 체인 중간에서 멈췄습니다.
Solution
해결 1 - 다음 안내를 작업 흐름과 일치하게 정정
세 스킬의 보고 템플릿 다음 항목을
write-test→commit-push→open-pr로 맞췄습니다. optimize-performance는 Phase 9 본문에도 후속 스킬을 언급하는 문장이 있어, 템플릿과 어긋나지 않도록 함께 정정했습니다.해결 2 - write-test 보고 템플릿 신설
다른 스킬과 같은 구조(작성 가이드 주석 + 항목형 본문)로 보고 템플릿을 신설하고, 템플릿을 읽어 보고하는 결과 보고 Phase를 추가했습니다. 마지막 Phase에 흩어져 있던 보고 지시는 템플릿으로 옮겨 보고 형식 정의를 한 곳에 모았습니다. 실패가 남은 상태에서는 커밋을 유도하지 않도록, 그 경우 다음 안내를 "실패 해소 후 commit-push"로 적게 했습니다.
Related Issue